Kenneth Tay
Oct 2, 2018
df[df$mpg > 30,]
with(df, df[mpg > 30,])
subset(df, mpg > 30)
filter(df, mpg > 30)
df %>% filter(mpg > 30)
By the end of this course, students will be able to:
x <- 3
y <- "abc"
x <- y
TRUE
or FALSE
)How to differentiate between numeric variables and character variables which consist of digits?
Optional material
Bi-annual open-access journal: Features short to medium length articles covering topics of interest to R users and developers